home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DEMOS / SUN_RSC.ZIP / PLAYER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-07  |  131 b   |  14 lines

  1. // PLAYER.H
  2.  
  3. #ifndef _PLAYER_H
  4. #define _PLAYER_H
  5.  
  6. #include "coor.h"
  7.  
  8. class player_C
  9. {
  10. public:
  11.   coor_C *rc;
  12. };
  13.  
  14. #endif